home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / wsc4c10.zip / SELFTEST._W_ < prev    next >
Text File  |  1996-09-10  |  837b  |  38 lines

  1. #
  2. # Watcom makefile for SELFTEST
  3. #
  4. # TO MAKE: wmake -f selftest._W_
  5. #
  6.  
  7. FLAGS = -c -oaxt -d2 -w4 -zW
  8.  
  9. OBJS = selftest.obj about.obj runtest.obj line.obj menu.obj paint.obj wscerror.obj
  10.  
  11. selftest.exe: $(OBJS) selftest.res selftest.def wsc.lib wtmlib.lib
  12.    wlink @selftest.lnk
  13.    wrc selftest.res
  14.  
  15. selftest.res: $(OBJS) selftest.rc
  16.    wrc -r -bt=windows selftest.rc
  17.  
  18. about.obj: about.c about.h
  19.    wcl $(FLAGS)  about.c
  20.  
  21. line.obj: line.c line.h wsc.h
  22.     wcl $(FLAGS)  line.c
  23.  
  24. menu.obj: menu.c menu.h wsc.h
  25.     wcl $(FLAGS)  menu.c
  26.  
  27. paint.obj: paint.c paint.h wsc.h
  28.     wcl $(FLAGS)  paint.c
  29.  
  30. selftest.obj: selftest.c selftest.h wsc.h
  31.    wcl $(FLAGS)  selftest.c
  32.  
  33. runtest.obj: runtest.c runtest.h wsc.h
  34.    wcl $(FLAGS)  runtest.c
  35.  
  36. wscerror.obj: wscerror.c wscerror.h wsc.h
  37.    wcl $(FLAGS)  wscerror.c
  38.